// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... namespace LargoCommon.Music { /// Type of musical tone. public enum MusicalToneType { /// Tone type. Empty = 0, /// Tone type. Rhythmic = 1, /// Tone type. Melodic = 2 // or Harmonic, Ornament,...? } }